/* Jake Ruiz Graphic Design. Manila, Philippines. Coding and CSS by bakesix aka Jake Ruiz. Version 3.1.  */

@charset "UTF-8";

/* CSS Document */

body, html {
	margin: 0;
	padding: 0;
	/*background-color:#FC6;*/
}

.container {
		width:100%;
		display:flex;
		flex-wrap:wrap;
		height:100vh;
		/*background-color:#F00;*/
}


/* Header */

.header {
	padding-top:2.5%;
	padding-left:2.5%;
	padding-right:2.5%;
	position:relative;
	/*background-color:#FF0;*/
	width:100%;
	height:13vh;
}


	.logo {
		width:25%;
		/*background-color:#0CF;*/
		float:left;
	}
	
		.logo img {
			height:65px;
		}
		
		
		.logo a {
			opacity: 1;
			transition: opacity .25s ease-in-out;
			-moz-transition: opacity .25s ease-in-out;
			-webkit-transition: opacity .25s ease-in-out;
		}
	
		.logo a:link {
			color:black;
		}
				
		.logo a:visited {
			color:black;
		}
				
		.logo a:hover {
			opacity: 0.25;
			text-decoration:none;
		}
			
	.navframe {
		float:left;
		width:13%;
		padding-top:0px;
		/*background-color:#CCC;*/
	}
	
	.nav {
		margin-top:-5px;
		list-style:none;
		padding:0;
		width:100%;
		float:left;
		position:relative;
		z-index:5;
	}

	.nav li {
    	position: relative;
		margin-right:10px;
		float:left;
	}
	
	.nav a {
    	display: block;
    	color: #000;
    	background-color: #fff;
    	text-decoration:underline;
		font: 1em 'muller_narrowlight';
		letter-spacing:2px;
		padding:2.5px;
	}

	.nav a:hover {
    	color: #000;
    	background-color:#fff;
	}
	
	/* Raindrop, Drop Top — Menu */
	
	.nav ul {
		background-color: #fff;
		background: rgba(255,255,255,0);
		list-style: none;
		position: absolute;
		left: -9999px;
	}
	
	.nav ul li {
		padding-top: 5px;
		float: none;
		z-index:10;
	}
	
	.nav ul a {
		text-decoration:underline;
		padding:2.5px;
		background-color:#FFF;
	}
	
	.nav li:hover ul {
		left: -40px; /
	}
	
	.nav li:hover a {
		background-color:#000;
		text-decoration:line-through;
		color:#fff;
		-webkit-transition: all .25s ease-out;
		-moz-transition: all .25s ease-out;
		-o-transition: all .25s ease-out;
		-ms-transition: all .25s ease-out;
		transition: all .25s ease-out;
	}
	
	.nav li:hover ul a { 
		text-decoration: underline;
	}
	
	.nav li:hover ul li a:hover {
		background-color: #FFF;
		color:#000;
		text-decoration:line-through;
	}			

/* Content */

.content {
	/*background-color:#FC6;*/

	width:95%;
	padding-left:2.5%;
	padding-right:2.5%;
}

					
.text {
	width:50%;
	display: flex;
	flex-wrap: wrap;
	height:64vh;
	/*background-color:#0F3;*/
}

	.aboutme {
		width:100%;
	}

	.text h3 {
		margin:0;
		font: 5em 'muller_narrowlight';
		line-height:90px;
		text-decoration:underline;
		padding-bottom:2.5vh;
	}
	
	.text p {
		margin-top:0;
		margin-bottom:0;
		margin-left:50%;
		margin-right:3vh;
		font: 1em 'muller_narrowlight';
	}
	
		#mediums {
			margin-left:0%;
			font: italic 1em 'muller_narrowlight';
			transform:rotate(-90deg);
			bottom:20px;
		}
	
	.text a {
		font: 1em 'muller_narrowlight';
		text-decoration:underline;
		color:#000000;
		
	}
	
		.text a:link {
			color:black;
		}
				
		.text a:visited {
			color:black;
		}
				
		.text a:hover {
			background-color:#000;
			color:#FFF;
			text-decoration:line-through;
		}

/* Works */	

.works {	
	width:50%;
}

	.box {
		cursor: pointer;
		position: relative;
		overflow: hidden;
		height:150px;
		width:50%;
		float:left;
	}
	
	.box img {
		position: absolute;
		width:100%;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
	}
	
	.box .overbox {
		background-color:white;
		position: absolute;
		top: 0;
		left: 0;
		color: #fff;
		z-index: 15;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
		opacity: 0;
		width: 100%;
		height: 150px;
		padding: 10px;
		padding-top:56px;
	}
	
	.box:hover .overbox { opacity: .9;}
	
	.box .overtext {
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;
		transition: all 300ms ease-out;
		transform: translateX(-30px);
		-webkit-transform: translateX(-30px);
	}
	
	.box .title {
		opacity: 0;
		text-decoration:underline;
		transition-delay: 0.15s;
		transition-duration: 0.2s;
		font:1.25em 'muller_narrowlight';
		color:#000;
	}
	
	.box:hover .title,
	.box:focus .title {
		opacity: 1;
		transform: translateX(0px);
		-webkit-transform: translateX(0px);
	  
	}
	
	.box .subtitle {
		font:.75em 'muller_narrowlight';
		opacity: 0;
		transition-delay: 0.25s;
		transition-duration: 0.25s;
		color:#000;
		text-decoration:underline;
	}
	
	.box:hover .subtitle,
	.box:focus .subtitle {
		opacity: 1;
		transform: translateX(0px);
		-webkit-transform: translateX(0px);
	}	

		
/* Footer */


.footer {
	position:relative;
	width:95%;
	padding-left:2.5%;
	padding-right:2.5%;
	/*background-color:#F00;*/
}

.footercontent {
	height:13vh;
}
	.footer ul {
		position:absolute;
		margin:0;
		padding:0;
		bottom: 20px;
	}
	
		.footer li {
			display:table-cell;
			align:left;
			padding-left:10px;
			font: 1em 'muller_narrowlight';
			vertical-align: middle;
		}
		
			.footer li:first-child {
				padding-left:0px;
				line-height:0px;
			}
			
		#copyright {
			display:inline;
			line-height:30px;
			padding:0;
		}
	
		#facebookicon {
			background:url("Images/fb.png") ;
			background-repeat:no-repeat;
			background-size:25px;
			height:25px;
			width:25px;
			text-indent:-9999px;
			float:left;

		}
			
		#twittericon {
			background:url("Images/twitter.png");
			background-repeat:no-repeat;
			background-size:25px;
			height:25px;
			width:25px;
			text-indent:-9999px;
			float:left;
	
		}
		
		#instagicon {
			background:url(Images/ig.png);
			background-repeat:no-repeat;
			background-size:25px;
			height:25px;
			width:25px;
			text-indent:-9999px;
			float:left;
	
		}
		
		.footer a {
			opacity: 1;
			transition: opacity .25s ease-in-out;
			-moz-transition: opacity .25s ease-in-out;
			-webkit-transition: opacity .25s ease-in-out;
		}
	
		.footer a:link {
			color:black;
		}
				
		.footer a:visited {
			color:black;
		}
				
		.footer a:hover {
			opacity: 0.25;
			text-decoration:none;
		}
	
	.footer p {
		font: 1em 'muller_narrowlight';
		float:left;
	}
